{% extends 'base_exam.html' %} {% block title %}Exam — {{ program.title }}{% endblock %} {% block exam_header_meta %} {% if is_practice %}Practice · timer not started{% else %}{{ program.title }} · secure session{% endif %} {% endblock %} {% block extra_css %} {% endblock %} {% block content %} {% if is_practice %}
Practice question
Not scored. Select an option, then start the real exam — it will enter full screen and the timer begins. Leaving the screen or exiting full screen cancels the attempt.
Sample · not counted
Which option best describes a multiple-choice question in this exam?
Important: The real exam runs in this secure window in full screen. Switching tabs, leaving the window, or exiting full screen will cancel this attempt. Results appear about {{ program.results_delay_minutes|default:5 }} minutes after you submit.
{% csrf_token %}
{% else %}
Time remaining · {{ time_limit_minutes }} min total
--:--
Question 1 / {{ questions|length }}
Answered: 0
Stay in this full-screen session. Leaving the screen, switching tabs, or exiting full screen cancels the exam.
{% csrf_token %} {% for q in questions %}
{{ forloop.counter }}. {{ q.text }}
{% for c in q.choices.all %}
{% endfor %}
{% endfor %}

Select an option to continue.

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}